home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / O Boy / Source / ComputerAETE_da.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-21  |  511 b   |  36 lines  |  [TEXT/R*ch]

  1. #pragma once on
  2. /*
  3.     ComputerAETE_da.h
  4.     © Bob Boylan 1996
  5.     
  6.     Revision History
  7.     MacHack 1996    initial creation
  8. */
  9. #include <AERegistry.h>
  10. #include "AETE_da.h"
  11.  
  12. // a fake aeom class
  13. #define cFinderProcess 'FnDr'
  14.  
  15.  
  16.  
  17.  
  18. class ComputerAETE_da : public AETE_da
  19. {
  20. public:
  21.     // ctor,dtor
  22.                 ComputerAETE_da();
  23.         virtual    ~ComputerAETE_da();
  24.     
  25.     // access
  26.         virtual
  27.         vector<Prop_da>     GetProperties( const DescType inClassID );
  28.         virtual
  29.         vector<Elem_da>     GetElements( const DescType inClassID );
  30.     
  31.     
  32. protected:
  33.  
  34. private:
  35. };
  36.